home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1998 August
/
PC Plus SuperCD 50b Issue 142 (CD142b) (August 1998).iso
/
handson
/
Java
/
JBAdventure
/
Person.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Source
|
1998-01-22
|
381 b
|
21 lines
public class Person extends ThingHolder
{
private Room room; // the Room where the Person is at present
Person(Room aRoom ) {
super( "the player", "you" ); // init super class
this.room = aRoom;
}
void setroom(Room aRoom) {
this.room = aRoom;
}
Room getroom() {
return this.room;
}
}